home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 007 / sortc.arc / FPUTSS.C < prev    next >
Encoding:
C/C++ Source or Header  |  1987-06-12  |  239 b   |  16 lines

  1. #include    <stdio.h>
  2.   
  3. fputss(s, iop)
  4. register char *s;
  5. register FILE *iop;
  6. /*
  7.  * Like fput() except that it puts a newline at the end of the line.
  8.  */
  9. {
  10.     register c;
  11.   
  12.     while (c = *s++)
  13.         putc(c, iop);
  14.     putc('\n', iop);
  15. }
  16.